diff options
Diffstat (limited to 'app/[lng]/evcp/(evcp)/vendors/page.tsx')
| -rw-r--r-- | app/[lng]/evcp/(evcp)/vendors/page.tsx | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/app/[lng]/evcp/(evcp)/vendors/page.tsx b/app/[lng]/evcp/(evcp)/vendors/page.tsx index 52af0709..d5434188 100644 --- a/app/[lng]/evcp/(evcp)/vendors/page.tsx +++ b/app/[lng]/evcp/(evcp)/vendors/page.tsx @@ -11,7 +11,7 @@ import { searchParamsCache } from "@/lib/vendors/validations" import { getVendors, getVendorStatusCounts } from "@/lib/vendors/service" import { VendorsTable } from "@/lib/vendors/table/vendors-table" import { Ellipsis } from "lucide-react" - +import { InformationButton } from "@/components/information/information-button" interface IndexPageProps { searchParams: Promise<SearchParams> } @@ -36,9 +36,12 @@ export default async function IndexPage(props: IndexPageProps) { <div className="flex items-center justify-between space-y-2"> <div className="flex items-center justify-between space-y-2"> <div> - <h2 className="text-2xl font-bold tracking-tight"> - 협력업체 리스트 - </h2> + <div className="flex items-center gap-2"> + <h2 className="text-2xl font-bold tracking-tight"> + 협력업체 리스트 + </h2> + <InformationButton pageCode="evcp/vendors" /> + </div> <p className="text-muted-foreground"> 협력업체에 대한 요약 정보를 확인하고{" "} <span className="inline-flex items-center whitespace-nowrap"> |
